OpenClipboard (coredll)
Last changed: -195.234.186.250

.
Summary
The OpenClipboard function opens the clipboard for examination and prevents other applications from modifying the clipboard content
Relation
CloseClipboard(), SetClipboardData(), EmptyClipboard()

C# Signature:

[DllImport("coredll.dll", EntryPoint="OpenClipboard", SetLastError=true)]  
private static extern bool OpenClipboard(IntPtr hWndNewOwner);  

VB Signature:

Declare Function OpenClipboard Lib "coredll.dll" (TODO) As TODO

VB.Net Signature:

<DllImport("coredll.dll")> Shared Function OpenClipboard(ByVal hWndNewOwner As Integer) As Boolean
End Function

User-Defined Types:

None.

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please see SetClipboardData()

Documentation